home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / manageme / tcpdump-.001 / tcpdump-~ / tcpdump-3.0.2-linux / tcpdump-3.0.2 / print-ppp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-11  |  2.7 KB  |  103 lines

  1. /*
  2.  * Copyright (c) 1990, 1991, 1993, 1994
  3.  *    The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that: (1) source code distributions
  7.  * retain the above copyright notice and this paragraph in its entirety, (2)
  8.  * distributions including binary code include the above copyright notice and
  9.  * this paragraph in its entirety in the documentation or other materials
  10.  * provided with the distribution, and (3) all advertising materials mentioning
  11.  * features or use of this software display the following acknowledgement:
  12.  * ``This product includes software developed by the University of California,
  13.  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
  14.  * the University nor the names of its contributors may be used to endorse
  15.  * or promote products derived from this software without specific prior
  16.  * written permission.
  17.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  18.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  19.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  20.  */
  21.  
  22. #ifndef lint
  23. static  char rcsid[] =
  24.     "@(#)$Header: print-ppp.c,v 1.18 94/06/10 17:01:37 mccanne Exp $ (LBL)";
  25. #endif
  26.  
  27. #ifdef PPP
  28. #include <sys/param.h>
  29. #include <sys/time.h>
  30. #include <sys/socket.h>
  31. #include <sys/file.h>
  32. #include <sys/ioctl.h>
  33.  
  34. #include <net/if.h>
  35.  
  36. #include <netinet/in.h>
  37. #include <netinet/in_systm.h>
  38. #include <netinet/ip.h>
  39.  
  40. #include <ctype.h>
  41. #include <errno.h>
  42. #include <netdb.h>
  43. #include <pcap.h>
  44. #include <signal.h>
  45. #include <stdio.h>
  46.  
  47. #include "interface.h"
  48. #include "addrtoname.h"
  49.  
  50. /* XXX This goes somewhere else. */
  51. #define PPP_HDRLEN 4
  52.  
  53. void
  54. ppp_if_print(u_char *user, const struct pcap_pkthdr *h,
  55.          register const u_char *p)
  56. {
  57.     register int length = h->len;
  58.     register int caplen = h->caplen;
  59.     const struct ip *ip;
  60.  
  61.     ts_print(&h->ts);
  62.  
  63.     if (caplen < PPP_HDRLEN) {
  64.         printf("[|ppp]");
  65.         goto out;
  66.     }
  67.  
  68.     /*
  69.      * Some printers want to get back at the link level addresses,
  70.      * and/or check that they're not walking off the end of the packet.
  71.      * Rather than pass them all the way down, we set these globals.
  72.      */
  73.     packetp = p;
  74.     snapend = p + caplen;
  75.  
  76.     if (eflag)
  77.         printf("%c %4d %02x %04x: ", p[0] ? 'O' : 'I', length,
  78.                p[1], ntohs(*(u_short *)&p[2]));
  79.  
  80.     length -= PPP_HDRLEN;
  81.     ip = (struct ip *)(p + PPP_HDRLEN);
  82.     ip_print((const u_char *)ip, length);
  83.  
  84.     if (xflag)
  85.         default_print((const u_char *)ip, caplen - PPP_HDRLEN);
  86. out:
  87.     putchar('\n');
  88. }
  89. #else
  90. #include <sys/types.h>
  91. #include <sys/time.h>
  92.  
  93. #include <stdio.h>
  94.  
  95. #include "interface.h"
  96. void
  97. ppp_if_print(u_char *user, const struct pcap_pkthdr *h, const u_char *p)
  98. {
  99.     error("not configured for ppp");
  100.     /* NOTREACHED */
  101. }
  102. #endif
  103.